home *** CD-ROM | disk | FTP | other *** search
- #
- # ULTRIX/options.mk --- Part of Makefile for PFE, compiler options on ULTRIX
- #
-
- PREFIX = /usr/local
- PFELIB = $(PREFIX)/lib/pfe
- PFEHLP = $(PFELIB)/help
-
- # You can choose between gcc and the DEC compiler,
- # gcc vs. >= 2.6.0 is better because of the global register variables.
-
- SYSTEM = ULTRIX
-
- CC = gcc -Wall
- OPTIM = -O2 -fomit-frame-pointer -DUSE_REGS
- DEBUG = -g -O
-
- #CC = cc -std1
- #OPTIM = -O2
- #DEBUG = -g
-
- CL = $(CC)
- CPP = $(CC) -E
-
- STRIP = -s
- OPTIONS = -D_BSD -DHAVE_SELECT -DUSE_TERMCAP
- TERM_O = termunix$o
- SYS_O = unix$o
- LFLAGS =
- LIBS = -ltermlib -lm
-
-
-